home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-02-25 | 1.1 KB | 19 lines | [TEXT/DOCS] |
-
- Verb date.get
- Syntax date.get (date, dayAddr, monthAddr, yearAddr, hourAddr, minuteAddr, secondAddr)
- Parameters date is a date value (stored as an unsigned 32–bit value representing the number of seconds since midnight, January 1, 1904).
- dayAddr is the address at which you wish to store the day component of the date.
- monthAddr is the address at which you wish to store the month component of the date.
- yearAddr is the address at which you wish to store the year component of the date.
- hourAddr is the address at which you wish to store the hour component of the date.
- minuteAddr is the address at which you wish to store the minute component of the date.
- secondAddr is the address at which you wish to store the second component of the date.
- Action Breaks the date into its component parts and stores them where directed.
- Returns True
- Examples date.get (clock.now (), @day, @month, @year, @hour, @minute, @second)
- » true
- Date components are stored in indicated local variables.
- See Also date.set
- clock.now
- Chapter 9 of the Frontier User Guide, in the script countChangedFiles.
-